* {
    box-sizing: border-box;
    padding: 0;
    margin: 0;
    font-family: Cambria, Cochin, Georgia, Times, 'Times New Roman', serif;
    font-size: 18px;
}
body {
    height: auto;
    display: flex;
    align-items: center;
    justify-content: center;
}
.container {
    width: auto;
    padding: 30px;
    border: 1px solid #eeeeee;
    background-color: #003bfb;
    
}
h4 {
    margin-bottom: 10px;
    font-size: 24px;
    color: white;
}
input {
    width: 100%;
    padding: 10px;
    margin-bottom: 10px;
}
#submit {
    border: none;
    background-color: orangered;
    color: white;
    width: 200px;
    margin-top: 10px;
    border-radius: 5px;
}
.sbmit{
    text-align: center;
}
#submit:hover {
    background-color: #333333;
}
#processing {
    margin-top: 10px;
    color: white;
    font-size: 18px;
}
